2.04 通用选择器
1、可以选择页面中的所有元素;
2、使用通配符“*“进行选择;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>css注释</title>
<style>
*{
color:blue;
font-size:14px;
}
</style>
</head>
<body>
<div>
<div class="laoLiu">我要好好学习1</div>
<p class="laoLiu laoChi">我要好好学习2</p>
<span class="laoLiu">我要好好学习3</span>
</div>
<strong class="laoChi">我要好好学习4</strong>
<br>
<a href="">我要好好学习5</a>
</body>
</html>
返回值: